home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / EZY120_1.ZIP / STRUCT.ARJ / CLIB.ARJ / RETMSG.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-09  |  308 b   |  14 lines

  1.  
  2. #include <stdio.h>
  3. #include <ezylib.h>
  4.  
  5. char *GetMsgAreaPath(word MsgBoard,char *MsgAreaPath,int FileType)
  6. {
  7.     char ftype;
  8.     if (FileType == 2)
  9.         ftype = 'T';
  10.     else
  11.         ftype = 'H';
  12.     sprintf(MsgAreaPath,"%sAREA%u\\M%c%05u.BBS",MsgPath,((MsgBoard-1) / 100)+1,ftype,MsgBoard);
  13.     return(MsgAreaPath);
  14. }